home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frm3_4_7
- Caption = "ANSI Values"
- ClientHeight = 1245
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 2280
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 1245
- ScaleWidth = 2280
- Begin VB.PictureBox picOutput
- Height = 495
- Left = 120
- ScaleHeight = 435
- ScaleWidth = 1995
- TabIndex = 2
- Top = 600
- Width = 2055
- End
- Begin VB.TextBox txtCharacter
- Height = 285
- Left = 1680
- TabIndex = 1
- Top = 120
- Width = 255
- End
- Begin VB.Label lblPress
- Caption = "Press any key"
- Height = 255
- Left = 360
- TabIndex = 0
- Top = 120
- Width = 1215
- End
- Attribute VB_Name = "frm3_4_7"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub txtCharacter_KeyPress(KeyAscii As Integer)
- txtCharacter.Text = ""
- picOutput.Cls
- picOutput.Print Chr(KeyAscii); " has ANSI value"; KeyAscii
- End Sub
-